home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 98 / CD-ROM 98.iso / infantil / tuxmath / tuxmath-2001.09.07-win32-installer.exe / src / sounds.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-09-01  |  957 b   |  58 lines

  1. /*
  2.   sounds.h
  3.  
  4.   For tuxmath
  5.  
  6.   by Bill Kendrick
  7.   bill@newbreedsoftware.com
  8.   http://www.newbreedsoftware.com/
  9.  
  10.  
  11.   Part of "Tux4Kids" Project
  12.   http://www.tux4kids.org/
  13.       
  14.   August 26, 2001 - August 31, 2001
  15. */
  16.  
  17.  
  18. #ifndef SOUNDS_H
  19. #define SOUNDS_H
  20.  
  21. enum {
  22.   SND_POP,
  23.   SND_LASER,
  24.   SND_BUZZ,
  25.   SND_ALARM,
  26.   SND_SHIELDSDOWN,
  27.   SND_EXPLOSION,
  28.   SND_CLICK,
  29.   NUM_SOUNDS
  30. };
  31.  
  32.  
  33. static char * sound_filenames[NUM_SOUNDS] = {
  34.   DATA_PREFIX "/sounds/pop.wav",
  35.   DATA_PREFIX "/sounds/laser.wav",
  36.   DATA_PREFIX "/sounds/buzz.wav",
  37.   DATA_PREFIX "/sounds/alarm.wav",
  38.   DATA_PREFIX "/sounds/shieldsdown.wav",
  39.   DATA_PREFIX "/sounds/explosion.wav",
  40.   DATA_PREFIX "/sounds/click.wav"
  41. };
  42.  
  43.  
  44. enum {
  45.   MUS_GAME,
  46.   MUS_GAME2,
  47.   MUS_GAME3,
  48.   NUM_MUSICS
  49. };
  50.  
  51. static char * music_filenames[NUM_MUSICS] = {
  52.   DATA_PREFIX "/sounds/game.mod",
  53.   DATA_PREFIX "/sounds/game2.mod",
  54.   DATA_PREFIX "/sounds/game3.mod"
  55. };
  56.  
  57. #endif
  58.